Public txtTop As Integer
Public txtLeft As Integer

Private Sub Command1_Click()
   Dim MyText As New TextBox()
        MyText.Location = New Point(txtLeft, txtTop)
        Me.Controls.Add(MyText)

        txtTop = txtTop + 25
        txtLeft = txtLeft + 10
End Sub

Public Sub New()
    MyBase.New()

    'This call is required by the Windows Form Designer.
    InitializeComponent()
    txtTop = 8
    txtLeft = 0

End Sub
